home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d2 / option.arc / TESTOPT.BAT < prev   
DOS Batch File  |  1988-01-15  |  563b  |  26 lines

  1. echo off
  2. cls
  3. echo  This is a demonstration of OPTION.COM
  4. :core
  5. echo  
  6. echo                                      MENU
  7. echo                           A) Read the documentation
  8. echo                           B) Read this batch file
  9. echo                           C) Return to DOS
  10. option A1a1B2b2C3c3-                 Please enter your choice: A, B, or C - 
  11. echo   Wait . . .
  12. if errorlevel 3 goto end
  13. if errorlevel 2 goto bat
  14. if errorlevel 1 goto doc
  15. goto core
  16. :doc
  17. type option.doc
  18. pause
  19. goto core
  20. :bat
  21. type testopt.bat
  22. pause
  23. goto core
  24. :end
  25.  
  26.